home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
nolog.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
811b
|
22 lines
/* RCSVER $Id: nolog.sql,v 1.2 1999-02-24 14:40:24-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: nolog.sql
* Date: 02/19/1999
* memo: Randy Wood
* Description: Create the nolog table. This table contains record types
* that are not to be logged to the output file.
* Changes:
************************************************************************* */
CREATE TABLE nolog
(
record_type NUMBER(38) /* Record type */
CONSTRAINT ref1_nolog REFERENCES rectypes(record_type)
ON DELETE CASCADE,
config_num NUMBER(38)
CONSTRAINT ref2_nolog REFERENCES configset(num)
ON DELETE CASCADE,
CONSTRAINT pk_nolog PRIMARY KEY (record_type, config_num)
);